home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Win2K Flash Taskbar 1.xpl
< prev
next >
Wrap
Text File
|
2002-01-03
|
1KB
|
43 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Taskbar"
"NAME"="Flash Taskbar Options #1"
"OSVERSION"="000111"
"VERSION"="1.13"
"LANGUAGE"="VBScript"
"TEXT 1"="Flash Taskbar Button"
"DESCRIPTION 1"=" When a non-focused window is updated by its program, Windows, by default, flashes the window on the taskbar. To give the window topmost position immediately, Clear [uncheck] the Box."
"DESCRIPTION 2"="To re-enable default, check Box & apply change."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Tip and settings provided by Pierre Szwarc."
Sub Plugin_Initialize
i=RegReadValue("HKCU\Control Panel\Desktop\ForegroundLockTimeout") 'Dwrd=200000=default
if i=200000 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue("HKCU\Control Panel\Desktop\ForegroundLockTimeout","200000",2)
else
Call RegWriteValue("HKCU\Control Panel\Desktop\ForegroundLockTimeout","0",2)
end if
End Sub
Sub Plugin_Terminate
End Sub